home *** CD-ROM | disk | FTP | other *** search
/ Australian Personal Computer 2002 November / CD 1 / APC0211D1.ISO / workshop / prog / files / ActivePerl-5.6.1.633-MSWin32.msi / _06cf637157a6e3d1770013cd59cfcc76 < prev    next >
Encoding:
Text File  |  2002-06-17  |  14.8 KB  |  458 lines

  1. /*
  2.  * tkWinDefault.h --
  3.  *
  4.  *    This file defines the defaults for all options for all of
  5.  *    the Tk widgets.
  6.  *
  7.  * Copyright (c) 1995-1997 Sun Microsystems, Inc.
  8.  *
  9.  * See the file "license.terms" for information on usage and redistribution
  10.  * of this file, and for a DISCLAIMER OF ALL WARRANTIES.
  11.  *
  12.  * RCS: @(#) $Id: tkWinDefault.h,v 1.2 1998/09/14 18:23:59 stanton Exp $
  13.  */
  14.  
  15. #ifndef _TKWINDEFAULT
  16. #define _TKWINDEFAULT
  17.  
  18. /*
  19.  * The definitions below provide symbolic names for the default colors.
  20.  * NORMAL_BG -        Normal background color.
  21.  * ACTIVE_BG -        Background color when widget is active.
  22.  * SELECT_BG -        Background color for selected text.
  23.  * TROUGH -        Background color for troughs in scales and scrollbars.
  24.  * INDICATOR -        Color for indicator when button is selected.
  25.  * DISABLED -        Foreground color when widget is disabled.
  26.  */
  27.  
  28. #define BLACK        "Black"
  29. #define WHITE        "White"
  30.  
  31. #define CTL_FONT    "{MS Sans Serif} 8"
  32. #define FIXED_FONT    "{Courier New} 8"
  33. #define NORMAL_BG    "SystemButtonFace"
  34. #define NORMAL_FG    "SystemButtonText"
  35. #define ACTIVE_BG    NORMAL_BG
  36. #define TEXT_FG    "SystemWindowText"
  37. #define SELECT_BG    "SystemHighlight"
  38. #define SELECT_FG    "SystemHighlightText"
  39. #define TROUGH        "SystemScrollbar"
  40. #define INDICATOR    "SystemWindow"
  41. #define DISABLED    "SystemDisabledText"
  42. #define MENU_BG    "SystemMenu"
  43. #define MENU_FG    "SystemMenuText"
  44. #define HIGHLIGHT    "SystemWindowFrame"
  45.  
  46. /*
  47.  * Defaults for labels, buttons, checkbuttons, and radiobuttons:
  48.  */
  49.  
  50. #define DEF_BUTTON_ANCHOR        "center"
  51. #define DEF_BUTTON_ACTIVE_BG_COLOR    NORMAL_BG
  52. #define DEF_BUTTON_ACTIVE_BG_MONO    BLACK
  53. #define DEF_BUTTON_ACTIVE_FG_COLOR    NORMAL_FG
  54. #define DEF_CHKRAD_ACTIVE_FG_COLOR    TEXT_FG
  55. #define DEF_BUTTON_ACTIVE_FG_MONO    WHITE
  56. #define DEF_BUTTON_BG_COLOR        NORMAL_BG
  57. #define DEF_BUTTON_BG_MONO        WHITE
  58. #define DEF_BUTTON_BITMAP        ""
  59. #define DEF_BUTTON_BORDER_WIDTH    "2"
  60. #define DEF_BUTTON_CURSOR        ""
  61. #define DEF_BUTTON_COMMAND        ""
  62. #define DEF_BUTTON_DEFAULT        "disabled"
  63. #define DEF_BUTTON_DISABLED_FG_COLOR    DISABLED
  64. #define DEF_BUTTON_DISABLED_FG_MONO    ""
  65. #define DEF_BUTTON_FG            NORMAL_FG
  66. #define DEF_CHKRAD_FG            TEXT_FG
  67. #define DEF_BUTTON_FONT        CTL_FONT
  68. #define DEF_BUTTON_HEIGHT        "0"
  69. #define DEF_BUTTON_HIGHLIGHT_BG    NORMAL_BG
  70. #define DEF_BUTTON_HIGHLIGHT        HIGHLIGHT
  71. #define DEF_LABEL_HIGHLIGHT_WIDTH    "0"
  72. #define DEF_BUTTON_HIGHLIGHT_WIDTH    "1"
  73. #define DEF_BUTTON_IMAGE                 NULL
  74. #define DEF_BUTTON_INDICATOR        "1"
  75. #define DEF_BUTTON_JUSTIFY        "center"
  76. #define DEF_BUTTON_OFF_VALUE        "0"
  77. #define DEF_BUTTON_ON_VALUE        "1"
  78. #define DEF_BUTTON_PADX        "1"
  79. #define DEF_LABCHKRAD_PADX        "1"
  80. #define DEF_BUTTON_PADY        "1"
  81. #define DEF_LABCHKRAD_PADY        "1"
  82. #define DEF_BUTTON_RELIEF        "raised"
  83. #define DEF_LABCHKRAD_RELIEF        "flat"
  84. #define DEF_BUTTON_SELECT_COLOR    INDICATOR
  85. #define DEF_BUTTON_SELECT_MONO        BLACK
  86. #define DEF_BUTTON_SELECT_IMAGE                 NULL
  87. #define DEF_BUTTON_STATE        "normal"
  88. #define DEF_LABEL_TAKE_FOCUS        "0"
  89. #define DEF_BUTTON_TAKE_FOCUS                 NULL
  90. #define DEF_BUTTON_TEXT            ""
  91. #define DEF_BUTTON_TEXT_VARIABLE    ""
  92. #define DEF_BUTTON_UNDERLINE        "-1"
  93. #define DEF_BUTTON_VALUE        ""
  94. #define DEF_BUTTON_WIDTH        "0"
  95. #define DEF_BUTTON_WRAP_LENGTH        "0"
  96. #define DEF_RADIOBUTTON_VARIABLE    "selectedButton"
  97. #define DEF_CHECKBUTTON_VARIABLE    ""
  98.  
  99. /*
  100.  * Defaults for canvases:
  101.  */
  102.  
  103. #define DEF_CANVAS_BG_COLOR        NORMAL_BG
  104. #define DEF_CANVAS_BG_MONO        WHITE
  105. #define DEF_CANVAS_BORDER_WIDTH        "0"
  106. #define DEF_CANVAS_CLOSE_ENOUGH        "1"
  107. #define DEF_CANVAS_CONFINE        "1"
  108. #define DEF_CANVAS_CURSOR        ""
  109. #define DEF_CANVAS_HEIGHT        "7c"
  110. #define DEF_CANVAS_HIGHLIGHT_BG        NORMAL_BG
  111. #define DEF_CANVAS_HIGHLIGHT        HIGHLIGHT
  112. #define DEF_CANVAS_HIGHLIGHT_WIDTH    "2"
  113. #define DEF_CANVAS_INSERT_BG        NORMAL_FG
  114. #define DEF_CANVAS_INSERT_BD_COLOR    "0"
  115. #define DEF_CANVAS_INSERT_BD_MONO    "0"
  116. #define DEF_CANVAS_INSERT_OFF_TIME    "300"
  117. #define DEF_CANVAS_INSERT_ON_TIME    "600"
  118. #define DEF_CANVAS_INSERT_WIDTH        "2"
  119. #define DEF_CANVAS_RELIEF        "flat"
  120. #define DEF_CANVAS_SCROLL_REGION    ""
  121. #define DEF_CANVAS_SELECT_COLOR        SELECT_BG
  122. #define DEF_CANVAS_SELECT_MONO        BLACK
  123. #define DEF_CANVAS_SELECT_BD_COLOR    "1"
  124. #define DEF_CANVAS_SELECT_BD_MONO    "0"
  125. #define DEF_CANVAS_SELECT_FG_COLOR    SELECT_FG
  126. #define DEF_CANVAS_SELECT_FG_MONO    WHITE
  127. #define DEF_CANVAS_TAKE_FOCUS                 NULL
  128. #define DEF_CANVAS_WIDTH        "10c"
  129. #define DEF_CANVAS_X_SCROLL_CMD        ""
  130. #define DEF_CANVAS_X_SCROLL_INCREMENT    "0"
  131. #define DEF_CANVAS_Y_SCROLL_CMD        ""
  132. #define DEF_CANVAS_Y_SCROLL_INCREMENT    "0"
  133.  
  134. /*
  135.  * Defaults for entries:
  136.  */
  137.  
  138. #define DEF_ENTRY_BG_COLOR        "SystemWindow"
  139. #define DEF_ENTRY_BG_MONO        WHITE
  140. #define DEF_ENTRY_BORDER_WIDTH        "2"
  141. #define DEF_ENTRY_CURSOR        "xterm"
  142. #define DEF_ENTRY_EXPORT_SELECTION    "1"
  143. #define DEF_ENTRY_FONT            CTL_FONT
  144. #define DEF_ENTRY_FG            TEXT_FG
  145. #define DEF_ENTRY_HIGHLIGHT_BG        NORMAL_BG
  146. #define DEF_ENTRY_HIGHLIGHT        HIGHLIGHT
  147. #define DEF_ENTRY_HIGHLIGHT_WIDTH    "0"
  148. #define DEF_ENTRY_INSERT_BG        TEXT_FG
  149. #define DEF_ENTRY_INSERT_BD_COLOR    "0"
  150. #define DEF_ENTRY_INSERT_BD_MONO    "0"
  151. #define DEF_ENTRY_INSERT_OFF_TIME    "300"
  152. #define DEF_ENTRY_INSERT_ON_TIME    "600"
  153. #define DEF_ENTRY_INSERT_WIDTH        "2"
  154. #define DEF_ENTRY_JUSTIFY        "left"
  155. #define DEF_ENTRY_RELIEF        "sunken"
  156. #define DEF_ENTRY_SCROLL_COMMAND    ""
  157. #define DEF_ENTRY_SELECT_COLOR        SELECT_BG
  158. #define DEF_ENTRY_SELECT_MONO        BLACK
  159. #define DEF_ENTRY_SELECT_BD_COLOR    "0"
  160. #define DEF_ENTRY_SELECT_BD_MONO    "0"
  161. #define DEF_ENTRY_SELECT_FG_COLOR    SELECT_FG
  162. #define DEF_ENTRY_SELECT_FG_MONO    WHITE
  163. #define DEF_ENTRY_SHOW                     NULL
  164. #define DEF_ENTRY_STATE            "normal"
  165. #define DEF_ENTRY_TAKE_FOCUS                 NULL
  166. #define DEF_ENTRY_TEXT_VARIABLE        ""
  167. #define DEF_ENTRY_WIDTH            "20"
  168.  
  169. /*
  170.  * Defaults for frames:
  171.  */
  172.  
  173. #define DEF_FRAME_BG_COLOR        NORMAL_BG
  174. #define DEF_FRAME_BG_MONO        WHITE
  175. #define DEF_FRAME_BORDER_WIDTH        "0"
  176. #define DEF_FRAME_CLASS            "Frame"
  177. #define DEF_FRAME_COLORMAP        ""
  178. #define DEF_FRAME_CONTAINER        "0"
  179. #define DEF_FRAME_CURSOR        ""
  180. #define DEF_FRAME_HEIGHT        "0"
  181. #define DEF_FRAME_HIGHLIGHT_BG        NORMAL_BG
  182. #define DEF_FRAME_HIGHLIGHT        HIGHLIGHT
  183. #define DEF_FRAME_HIGHLIGHT_WIDTH    "0"
  184. #define DEF_FRAME_RELIEF        "flat"
  185. #define DEF_FRAME_TAKE_FOCUS        "0"
  186. #define DEF_FRAME_USE            ""
  187. #define DEF_FRAME_VISUAL        ""
  188. #define DEF_FRAME_WIDTH            "0"
  189.  
  190. /*
  191.  * Defaults for listboxes:
  192.  */
  193.  
  194. #define DEF_LISTBOX_BG_COLOR        NORMAL_BG
  195. #define DEF_LISTBOX_BG_MONO        WHITE
  196. #define DEF_LISTBOX_BORDER_WIDTH    "2"
  197. #define DEF_LISTBOX_CURSOR        ""
  198. #define DEF_LISTBOX_EXPORT_SELECTION    "1"
  199. #define DEF_LISTBOX_FONT        CTL_FONT
  200. #define DEF_LISTBOX_FG            NORMAL_FG
  201. #define DEF_LISTBOX_HEIGHT        "10"
  202. #define DEF_LISTBOX_HIGHLIGHT_BG    NORMAL_BG
  203. #define DEF_LISTBOX_HIGHLIGHT        HIGHLIGHT
  204. #define DEF_LISTBOX_HIGHLIGHT_WIDTH    "1"
  205. #define DEF_LISTBOX_RELIEF        "sunken"
  206. #define DEF_LISTBOX_SCROLL_COMMAND    ""
  207. #define DEF_LISTBOX_SELECT_COLOR    SELECT_BG
  208. #define DEF_LISTBOX_SELECT_MONO        BLACK
  209. #define DEF_LISTBOX_SELECT_BD        "1"
  210. #define DEF_LISTBOX_SELECT_FG_COLOR    SELECT_FG
  211. #define DEF_LISTBOX_SELECT_FG_MONO    WHITE
  212. #define DEF_LISTBOX_SELECT_MODE        "browse"
  213. #define DEF_LISTBOX_SET_GRID        "0"
  214. #define DEF_LISTBOX_TAKE_FOCUS                 NULL
  215. #define DEF_LISTBOX_WIDTH        "20"
  216.  
  217. /*
  218.  * Defaults for individual entries of menus:
  219.  */
  220.  
  221. #define DEF_MENU_ENTRY_ACTIVE_BG             NULL
  222. #define DEF_MENU_ENTRY_ACTIVE_FG             NULL
  223. #define DEF_MENU_ENTRY_ACCELERATOR             NULL
  224. #define DEF_MENU_ENTRY_BG                 NULL
  225. #define DEF_MENU_ENTRY_BITMAP        None
  226. #define DEF_MENU_ENTRY_COLUMN_BREAK    "0"
  227. #define DEF_MENU_ENTRY_COMMAND                 NULL
  228. #define DEF_MENU_ENTRY_FG                 NULL
  229. #define DEF_MENU_ENTRY_FONT                 NULL
  230. #define DEF_MENU_ENTRY_HIDE_MARGIN    "0"
  231. #define DEF_MENU_ENTRY_IMAGE                 NULL
  232. #define DEF_MENU_ENTRY_INDICATOR    "1"
  233. #define DEF_MENU_ENTRY_LABEL                 NULL
  234. #define DEF_MENU_ENTRY_MENU                 NULL
  235. #define DEF_MENU_ENTRY_OFF_VALUE    "0"
  236. #define DEF_MENU_ENTRY_ON_VALUE        "1"
  237. #define DEF_MENU_ENTRY_SELECT_IMAGE             NULL
  238. #define DEF_MENU_ENTRY_STATE        "normal"
  239. #define DEF_MENU_ENTRY_VALUE                 NULL
  240. #define DEF_MENU_ENTRY_CHECK_VARIABLE             NULL
  241. #define DEF_MENU_ENTRY_RADIO_VARIABLE    "selectedButton"
  242. #define DEF_MENU_ENTRY_SELECT             NULL
  243. #define DEF_MENU_ENTRY_UNDERLINE    "-1"
  244.  
  245. /*
  246.  * Defaults for menus overall:
  247.  */
  248.  
  249. #define DEF_MENU_ACTIVE_BG_COLOR    SELECT_BG
  250. #define DEF_MENU_ACTIVE_BG_MONO        BLACK
  251. #define DEF_MENU_ACTIVE_BORDER_WIDTH    "0"
  252. #define DEF_MENU_ACTIVE_FG_COLOR    SELECT_FG
  253. #define DEF_MENU_ACTIVE_FG_MONO        WHITE
  254. #define DEF_MENU_BG_COLOR        MENU_BG
  255. #define DEF_MENU_BG_MONO        WHITE
  256. #define DEF_MENU_BORDER_WIDTH        "0"
  257. #define DEF_MENU_CURSOR            "arrow"
  258. #define DEF_MENU_DISABLED_FG_COLOR    DISABLED
  259. #define DEF_MENU_DISABLED_FG_MONO    ""
  260. #define DEF_MENU_FONT            CTL_FONT
  261. #define DEF_MENU_FG            MENU_FG
  262. #define DEF_MENU_POST_COMMAND        ""
  263. #define DEF_MENU_RELIEF            "flat"
  264. #define DEF_MENU_SELECT_COLOR        MENU_FG
  265. #define DEF_MENU_SELECT_MONO        BLACK
  266. #define DEF_MENU_TAKE_FOCUS        "0"
  267. #define DEF_MENU_TEAROFF        "1"
  268. #define DEF_MENU_TEAROFF_CMD                 NULL
  269. #define DEF_MENU_TITLE            ""
  270. #define DEF_MENU_TYPE            "normal"
  271.  
  272. /*
  273.  * Defaults for menubuttons:
  274.  */
  275.  
  276. #define DEF_MENUBUTTON_ANCHOR        "center"
  277. #define DEF_MENUBUTTON_ACTIVE_BG_COLOR    ACTIVE_BG
  278. #define DEF_MENUBUTTON_ACTIVE_BG_MONO    BLACK
  279. #define DEF_MENUBUTTON_ACTIVE_FG_COLOR    NORMAL_FG
  280. #define DEF_MENUBUTTON_ACTIVE_FG_MONO    WHITE
  281. #define DEF_MENUBUTTON_BG_COLOR        NORMAL_BG
  282. #define DEF_MENUBUTTON_BG_MONO        WHITE
  283. #define DEF_MENUBUTTON_BITMAP        ""
  284. #define DEF_MENUBUTTON_BORDER_WIDTH    "2"
  285. #define DEF_MENUBUTTON_CURSOR        ""
  286. #define DEF_MENUBUTTON_DIRECTION    "below"
  287. #define DEF_MENUBUTTON_DISABLED_FG_COLOR DISABLED
  288. #define DEF_MENUBUTTON_DISABLED_FG_MONO    ""
  289. #define DEF_MENUBUTTON_FONT        CTL_FONT
  290. #define DEF_MENUBUTTON_FG        NORMAL_FG
  291. #define DEF_MENUBUTTON_HEIGHT        "0"
  292. #define DEF_MENUBUTTON_HIGHLIGHT_BG    NORMAL_BG
  293. #define DEF_MENUBUTTON_HIGHLIGHT    HIGHLIGHT
  294. #define DEF_MENUBUTTON_HIGHLIGHT_WIDTH    "0"
  295. #define DEF_MENUBUTTON_IMAGE                 NULL
  296. #define DEF_MENUBUTTON_INDICATOR    "0"
  297. #define DEF_MENUBUTTON_JUSTIFY        "center"
  298. #define DEF_MENUBUTTON_MENU        ""
  299. #define DEF_MENUBUTTON_PADX        "4p"
  300. #define DEF_MENUBUTTON_PADY        "3p"
  301. #define DEF_MENUBUTTON_RELIEF        "flat"
  302. #define DEF_MENUBUTTON_STATE        "normal"
  303. #define DEF_MENUBUTTON_TAKE_FOCUS    "0"
  304. #define DEF_MENUBUTTON_TEXT        ""
  305. #define DEF_MENUBUTTON_TEXT_VARIABLE    ""
  306. #define DEF_MENUBUTTON_UNDERLINE    "-1"
  307. #define DEF_MENUBUTTON_WIDTH        "0"
  308. #define DEF_MENUBUTTON_WRAP_LENGTH    "0"
  309.  
  310. /*
  311.  * Defaults for messages:
  312.  */
  313.  
  314. #define DEF_MESSAGE_ANCHOR        "center"
  315. #define DEF_MESSAGE_ASPECT        "150"
  316. #define DEF_MESSAGE_BG_COLOR        NORMAL_BG
  317. #define DEF_MESSAGE_BG_MONO        WHITE
  318. #define DEF_MESSAGE_BORDER_WIDTH    "2"
  319. #define DEF_MESSAGE_CURSOR        ""
  320. #define DEF_MESSAGE_FG            NORMAL_FG
  321. #define DEF_MESSAGE_FONT        CTL_FONT
  322. #define DEF_MESSAGE_HIGHLIGHT_BG    NORMAL_BG
  323. #define DEF_MESSAGE_HIGHLIGHT        HIGHLIGHT
  324. #define DEF_MESSAGE_HIGHLIGHT_WIDTH    "0"
  325. #define DEF_MESSAGE_JUSTIFY        "left"
  326. #define DEF_MESSAGE_PADX        "-1"
  327. #define DEF_MESSAGE_PADY        "-1"
  328. #define DEF_MESSAGE_RELIEF        "flat"
  329. #define DEF_MESSAGE_TAKE_FOCUS        "0"
  330. #define DEF_MESSAGE_TEXT        ""
  331. #define DEF_MESSAGE_TEXT_VARIABLE    ""
  332. #define DEF_MESSAGE_WIDTH        "0"
  333.  
  334. /*
  335.  * Defaults for scales:
  336.  */
  337.  
  338. #define DEF_SCALE_ACTIVE_BG_COLOR    ACTIVE_BG
  339. #define DEF_SCALE_ACTIVE_BG_MONO    BLACK
  340. #define DEF_SCALE_BG_COLOR        NORMAL_BG
  341. #define DEF_SCALE_BG_MONO        WHITE
  342. #define DEF_SCALE_BIG_INCREMENT        "0"
  343. #define DEF_SCALE_BORDER_WIDTH        "2"
  344. #define DEF_SCALE_COMMAND        ""
  345. #define DEF_SCALE_CURSOR        ""
  346. #define DEF_SCALE_DIGITS        "0"
  347. #define DEF_SCALE_FONT            CTL_FONT
  348. #define DEF_SCALE_FG_COLOR        NORMAL_FG
  349. #define DEF_SCALE_FG_MONO        BLACK
  350. #define DEF_SCALE_FROM            "0"
  351. #define DEF_SCALE_HIGHLIGHT_BG        NORMAL_BG
  352. #define DEF_SCALE_HIGHLIGHT        HIGHLIGHT
  353. #define DEF_SCALE_HIGHLIGHT_WIDTH    "2"
  354. #define DEF_SCALE_LABEL            ""
  355. #define DEF_SCALE_LENGTH        "100"
  356. #define DEF_SCALE_ORIENT        "vertical"
  357. #define DEF_SCALE_RELIEF        "flat"
  358. #define DEF_SCALE_REPEAT_DELAY    "300"
  359. #define DEF_SCALE_REPEAT_INTERVAL    "100"
  360. #define DEF_SCALE_RESOLUTION        "1"
  361. #define DEF_SCALE_TROUGH_COLOR        TROUGH
  362. #define DEF_SCALE_TROUGH_MONO        WHITE
  363. #define DEF_SCALE_SHOW_VALUE        "1"
  364. #define DEF_SCALE_SLIDER_LENGTH        "10m"
  365. #define DEF_SCALE_SLIDER_RELIEF        "raised"
  366. #define DEF_SCALE_STATE            "normal"
  367. #define DEF_SCALE_TAKE_FOCUS                 NULL
  368. #define DEF_SCALE_TICK_INTERVAL        "0"
  369. #define DEF_SCALE_TO            "100"
  370. #define DEF_SCALE_VARIABLE        ""
  371. #define DEF_SCALE_WIDTH            "5m"
  372.  
  373. /*
  374.  * Defaults for scrollbars:
  375.  */
  376.  
  377. #define DEF_SCROLLBAR_ACTIVE_BG_COLOR    ACTIVE_BG
  378. #define DEF_SCROLLBAR_ACTIVE_BG_MONO    BLACK
  379. #define DEF_SCROLLBAR_ACTIVE_RELIEF    "raised"
  380. #define DEF_SCROLLBAR_BG_COLOR        NORMAL_BG
  381. #define DEF_SCROLLBAR_BG_MONO        WHITE
  382. #define DEF_SCROLLBAR_BORDER_WIDTH    "0"
  383. #define DEF_SCROLLBAR_COMMAND        ""
  384. #define DEF_SCROLLBAR_CURSOR        ""
  385. #define DEF_SCROLLBAR_EL_BORDER_WIDTH    "-1"
  386. #define DEF_SCROLLBAR_HIGHLIGHT_BG    NORMAL_BG
  387. #define DEF_SCROLLBAR_HIGHLIGHT    HIGHLIGHT
  388. #define DEF_SCROLLBAR_HIGHLIGHT_WIDTH    "0"
  389. #define DEF_SCROLLBAR_JUMP        "0"
  390. #define DEF_SCROLLBAR_ORIENT        "vertical"
  391. #define DEF_SCROLLBAR_RELIEF        "sunken"
  392. #define DEF_SCROLLBAR_REPEAT_DELAY    "300"
  393. #define DEF_SCROLLBAR_REPEAT_INTERVAL    "100"
  394. #define DEF_SCROLLBAR_TAKE_FOCUS             NULL
  395. #define DEF_SCROLLBAR_TROUGH_COLOR    TROUGH
  396. #define DEF_SCROLLBAR_TROUGH_MONO    WHITE
  397. #define DEF_SCROLLBAR_WIDTH        "4m"
  398.  
  399. /*
  400.  * Defaults for texts:
  401.  */
  402.  
  403. #define DEF_TEXT_BG_COLOR        "SystemWindow"
  404. #define DEF_TEXT_BG_MONO        WHITE
  405. #define DEF_TEXT_BORDER_WIDTH        "2"
  406. #define DEF_TEXT_CURSOR            "xterm"
  407. #define DEF_TEXT_FG            TEXT_FG
  408. #define DEF_TEXT_EXPORT_SELECTION    "1"
  409. #define DEF_TEXT_FONT            FIXED_FONT
  410. #define DEF_TEXT_HEIGHT            "24"
  411. #define DEF_TEXT_HIGHLIGHT_BG        NORMAL_BG
  412. #define DEF_TEXT_HIGHLIGHT        HIGHLIGHT
  413. #define DEF_TEXT_HIGHLIGHT_WIDTH    "0"
  414. #define DEF_TEXT_INSERT_BG        TEXT_FG
  415. #define DEF_TEXT_INSERT_BD_COLOR    "0"
  416. #define DEF_TEXT_INSERT_BD_MONO        "0"
  417. #define DEF_TEXT_INSERT_OFF_TIME    "300"
  418. #define DEF_TEXT_INSERT_ON_TIME        "600"
  419. #define DEF_TEXT_INSERT_WIDTH        "2"
  420. #define DEF_TEXT_PADX            "1"
  421. #define DEF_TEXT_PADY            "1"
  422. #define DEF_TEXT_RELIEF            "sunken"
  423. #define DEF_TEXT_SELECT_COLOR        SELECT_BG
  424. #define DEF_TEXT_SELECT_MONO        BLACK
  425. #define DEF_TEXT_SELECT_BD_COLOR    "0"
  426. #define DEF_TEXT_SELECT_BD_MONO        "0"
  427. #define DEF_TEXT_SELECT_FG_COLOR    SELECT_FG
  428. #define DEF_TEXT_SELECT_FG_MONO        WHITE
  429. #define DEF_TEXT_SELECT_RELIEF        "flat"
  430. #define DEF_TEXT_SET_GRID        "0"
  431. #define DEF_TEXT_SPACING1        "0"
  432. #define DEF_TEXT_SPACING2        "0"
  433. #define DEF_TEXT_SPACING3        "0"
  434. #define DEF_TEXT_STATE            "normal"
  435. #define DEF_TEXT_TABS            ""
  436. #define DEF_TEXT_TAKE_FOCUS                 NULL
  437. #define DEF_TEXT_WIDTH            "80"
  438. #define DEF_TEXT_WRAP            "char"
  439. #define DEF_TEXT_XSCROLL_COMMAND    ""
  440. #define DEF_TEXT_YSCROLL_COMMAND    ""
  441.  
  442. /*
  443.  * Defaults for canvas text:
  444.  */
  445.  
  446. #define DEF_CANVTEXT_FONT        CTL_FONT
  447.  
  448. /*
  449.  * Defaults for toplevels (most of the defaults for frames also apply
  450.  * to toplevels):
  451.  */
  452.  
  453. #define DEF_TOPLEVEL_CLASS        "Toplevel"
  454. #define DEF_TOPLEVEL_MENU        ""
  455. #define DEF_TOPLEVEL_SCREEN        ""
  456.  
  457. #endif /* _TKWINDEFAULT */
  458.